home *** CD-ROM | disk | FTP | other *** search
/ Amiga Game-Power / Amiga Game-Power.iso / anwendungen / gw print / structurebrowser_v1.3 / sources / makefile < prev    next >
Makefile  |  1994-05-20  |  489b  |  20 lines

  1. # makefile for Manx make utility
  2. # This will make "SB", Structure Browser.
  3.  
  4. OBJS =   sb.o sbwindow.o sbscreen.o sbgfx.o sbgadget.o sbio.o sblibrary.o\
  5.  sbview.o sbrequest.o sbtext.o output.o sbmenu.o sbitext.o sbimage.o\
  6.  sbborder.o sblayer.o
  7.  
  8. sb       :  $(OBJS) twmClient.o
  9.             ln $(OBJS) twmClient.o -lc
  10.  
  11. sb.p     :  header/sb.h
  12.             cc +Hsb.p header/sb.h
  13.  
  14. $(OBJS)  :  sb.p
  15.             cc +Isb.p $*.c
  16.  
  17.  
  18. twmClient.o : header/twm.h
  19.               cc twmClient
  20.